home *** CD-ROM | disk | FTP | other *** search
/ 8bitfiles.net/archives / archives.tar / archives / compuserve-file-archive / 04 geoProgramming / HEXCLC.SDA / INIT (.txt) < prev    next >
Encoding:
GEOS ConVerT  |  2019-04-13  |  1.5 KB  |  39 lines

  1. SEQ formatted GEOS file V1.0
  2. Olivetti PR2300
  3. OP V2.0 or higher
  4. #$Main
  5. BLASTER'S CONVERTER V2.5
  6. ASCII
  7. UTILITY
  8. COPE SOURCE V1.0
  9. DL870517
  10. COPE EDITOR V1.0
  11. .START $5000 ; Start address in memory for loading program.
  12. .INIT CodeHere ; Initialization routine to call after loading.
  13. .TYPE DESK_ACC ; Type of Program, see ZeroPage Equates for details.
  14. .NAME geoHexCalc  V1.0  ; Permanent Name of program
  15. .Author Bill Sharp ; Authors name
  16. ; Icon data Table, this is optional
  17. ; use can use the icon editor(DeskPack1) to change the
  18. ; icon later if you wish
  19. .Icon $FF,$FF,$FF,$80,0,1,$8F,$FF,$F9,$80,0
  20.  1,$87,$77,$71,$85,$55,$51,$87,$77,$71,$80,0,1,$87,$77,$71
  21.  $85,$55,$51,$87,$77,$71,$80,0,1,$87,$77,$71,$85,$55,$51,$87
  22.  $77,$71,$80,0,1,$87,$77,$71,$85,$55,$51,$87,$77,$71,$80,0,1,$FF,$FF,$FF
  23. ; now the Equates files
  24. .Include ZeroPage
  25. .Include Routines
  26. .Byte 'Copyright 1987 '
  27. .Byte 'by '  
  28. .Byte 'Bill Sharp Computing '
  29. .Byte 'All Rights Reserved '
  30. .Byte 'Special thanks to Pamela Pardue, my parents, and God.'
  31. ; This is where the program starts
  32. CodeHere
  33. .Include Main
  34. .Include UTILITY
  35. .Include ASCII
  36. .Include MATH
  37. .Include DISPLAY
  38. Endcode ; Label is used for reference of highest memory loacation
  39.